body {
      text-align: center;
      font-family: Arial;
      background-color: #f8f8f8;
    }
    .slider-container {
      width: 400px;
      height: 200px;
      margin: 30px auto;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    #slide-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .text-over {
      position: absolute;
      bottom: 6px;
/*      left: 0;*/
      width: 100%;
      color: white;
      font-weight: bold;
      background: rgba(0, 0, 0, 0.4);
      padding: 8px 0;
    }

    .btn {
      margin: 10px 5px;
      padding: 8px 16px;
      font-size: 16px;
      cursor: pointer;
    }